home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / General / GCC 1.37.1r15 / Tests / fix-b.c < prev    next >
C/C++ Source or Header  |  1993-01-04  |  144b  |  11 lines

  1. /* Compile with -b, each string should be 0-terminated. */
  2.  
  3. char *str1, *str2, *str3;
  4.  
  5. main()
  6. {
  7.     str2 = "bazz";
  8.     str1 = "foo";
  9.     str3 = "bar";
  10. }
  11.